home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.006 / xemacs-1 / lib / xemacs-19.13 / lisp / ediff / ediff-diff.el next >
Encoding:
Text File  |  1995-08-30  |  41.2 KB  |  1,170 lines

  1. ;;; ediff-diff.el --- diff-related utilities
  2. ;;; Copyright (C) 1994, 1995 Free Software Foundation, Inc.
  3.  
  4. ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
  5.  
  6. ;; This file is part of GNU Emacs.
  7.  
  8. ;; GNU Emacs is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 2, or (at your option)
  11. ;; any later version.
  12.  
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ;; GNU General Public License for more details.
  17.  
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  20. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. (require 'ediff-init)
  23.  
  24.  
  25. (defvar ediff-shell
  26.   (cond ((eq system-type 'emx) "cmd") ; OS/2
  27.     ((memq system-type '(vax-vms axp-vms)) "*dcl*") ; VMS
  28.     (t  "sh")) ; UNIX
  29.   "*The shell used to run diff and patch.  If user's .profile or
  30. .cshrc files are set up correctly, any shell will do.  However, some people
  31. set $prompt or other things incorrectly, which leads to undesirable output
  32. messages.  These may cause Ediff to fail.  In such a case, set ediff-shell
  33. to a shell that you are not using or, better, fix your shell's startup file.")
  34.  
  35.  
  36. (defvar ediff-diff-program "diff"
  37.   "*Program to use for generating the differential of the two files.")
  38. (defvar ediff-diff-options ""  
  39.   "*Options to pass to `ediff-diff-program'. 
  40. If diff\(1\) is used as `ediff-diff-program', then the most useful options are
  41. `-w', to ignore space, and `-i', to ignore case of letters.
  42. At present, the option `-c' is ignored, since Ediff doesn't understand this
  43. type of output.")
  44.  
  45. (defvar ediff-custom-diff-program ediff-diff-program
  46.   "*Program to use for generating custom diff output for saving it in a file.
  47. This output is not used by Ediff internally.")
  48. (defvar ediff-custom-diff-options "-c"
  49.   "*Options to pass to `ediff-custom-diff-program'.")
  50.  
  51. ;;; Support for diff3
  52.  
  53. (defvar ediff-match-diff3-line "^====\\(.?\\)$"
  54.   "Pattern to match lines produced by diff3 that describe differences.")
  55. (defvar ediff-diff3-program "diff3"
  56.   "*Program to be used for three-way comparison.
  57. Must produce output compatible with Unix's diff3 program.")
  58. (defvar ediff-diff3-options ""  
  59.   "*Options to pass to `ediff-diff3-program'.")
  60. (defvar ediff-diff3-ok-lines-regexp
  61.   "^\\([1-3]:\\|====\\|  \\|.*Warning *:\\|.*No newline\\|.*missing newline\\)"
  62.   "*Regexp that matches normal output lines from `ediff-diff3-program'.
  63. Lines that do not match are assumed to be error messages.")
  64.  
  65. ;; keeps the status of the current diff in 3-way jobs.
  66. ;; the status can be =diff(A), =diff(B), or =diff(A+B)
  67. (ediff-defvar-local ediff-diff-status "" "")
  68.  
  69. ;; Support for patch 
  70.  
  71. (defvar ediff-patch-program "patch"
  72.   "*Name of the program that applies patches.")
  73. (defvar ediff-patch-options ""
  74.   "*Options to pass to ediff-patch-program.")
  75.  
  76. ;; The buffer of the patch file.
  77. (defvar ediff-patch-buf nil)
  78. ;; The buffer where patch would display its diagnostics.
  79. (defvar ediff-patch-diagnostics nil)
  80.  
  81.   
  82. ;;; Fine differences 
  83.  
  84. (ediff-defvar-local ediff-auto-refine (if (ediff-window-display-p) 'on 'nix)
  85.   "If `on', Ediff auto-highlights fine diffs for the current diff region.
  86. If `off', auto-highlighting is not used. If `nix', no fine diffs are shown
  87. at all, unless the user force-refines the region by hitting `*'.
  88.  
  89. This variable can be set either in .emacs or toggled interactively.
  90. Use `setq-default' if setting it in .emacs")
  91.  
  92. (ediff-defvar-local ediff-ignore-similar-regions nil
  93.   "*If t, skip over difference regions that differ only in the white space and line breaks.
  94. This variable can be set either in .emacs or toggled interactively.
  95. Use `setq-default' if setting it in .emacs")
  96.  
  97. (ediff-defvar-local ediff-auto-refine-limit 700
  98.   "Auto-refine only those regions that are smaller than this number of bytes.")
  99.   
  100. ;;; General
  101.  
  102. (defvar ediff-diff-ok-lines-regexp  
  103.   "^\\([0-9,]+[acd][0-9,]+$\\|[<>] \\|---\\|.*Warning *:\\|.*No newline\\|.*missing newline\\)"
  104.   "Regexp that matches normal output lines from `ediff-diff-program'.
  105. This is mostly lifted from Emerge, except that Ediff also considers
  106. warnings and `Missing newline'-type messages to be normal output.
  107. Lines that do not match are assumed to be error messages.")
  108.  
  109. (defvar ediff-match-diff-line (let ((x "\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)"))
  110.                 (concat "^" x "\\([acd]\\)" x "$"))
  111.   "Pattern to match lines produced by diff that describe differences.")
  112.  
  113. (ediff-defvar-local ediff-setup-diff-regions-function nil
  114.   "value is a function symbol depending on the kind of job is to be done.
  115. For 2-way jobs and for ediff-merge, it should be `ediff-setup-diff-regions'.
  116. For jobs requiring diff3, it should be `ediff-setup-diff-regions3'.
  117.  
  118. The function should take three mandatory arguments, file-A, file-B, and
  119. file-C. It may ignore file C for diff2 jobs. It should also take
  120. one optional arguments, diff-number to refine.")
  121.  
  122.   
  123. ;;; Functions
  124.  
  125. ;; Generate the difference vector and overlays for the two files
  126. ;; With optional arg REG-TO-REFINE, refine this region.
  127. ;; File-C argument is not used here. It is there just because
  128. ;; ediff-setup-diff-regions is called via a funcall to
  129. ;; ediff-setup-diff-regions-function, which can also have the value
  130. ;; ediff-setup-diff-regions3, which takes 4 arguments.
  131. (defun ediff-setup-diff-regions (file-A file-B file-C)
  132.   ;; Force all minibuffers to display ediff's messages.
  133.   ;; When xemacs implements minibufferless frames, this won't be necessary
  134.   (if (and ediff-xemacs-p ediff-synchronize-minibuffers)
  135.       (setq synchronize-minibuffers t))
  136.                           
  137.   (or (ediff-buffer-live-p ediff-diff-buffer)
  138.       (setq ediff-diff-buffer
  139.         (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
  140.   
  141.   (message "Computing differences ...")
  142.   (ediff-exec-process ediff-diff-program ediff-diff-buffer 'synchronize
  143.               ediff-diff-options file-A file-B)
  144.   
  145.   (ediff-prepare-error-list ediff-diff-ok-lines-regexp ediff-diff-buffer)
  146.   ;;(message "Computing differences ... done")
  147.   (ediff-convert-diffs-to-overlays
  148.    (ediff-extract-diffs
  149.     ediff-diff-buffer ediff-word-mode ediff-narrow-bounds))
  150.   )
  151.      
  152. ;; If file-A/B/C is nil, do 2-way comparison with the non-nil buffers
  153. ;; This function works for diff3 and diff2 jobs
  154. (defun ediff-setup-fine-diff-regions (file-A file-B file-C reg-num)
  155.   (or (ediff-buffer-live-p ediff-fine-diff-buffer)
  156.       (setq ediff-fine-diff-buffer
  157.         (get-buffer-create
  158.          (ediff-unique-buffer-name "*ediff-fine-diff" "*"))))
  159.   
  160.   (let (diff3-job diff-program ok-regexp diff-list)
  161.     (setq diff3-job ediff-3way-job
  162.       diff-program (if diff3-job ediff-diff3-program ediff-diff-program)
  163.       ok-regexp (if diff3-job
  164.             ediff-diff3-ok-lines-regexp
  165.             ediff-diff-ok-lines-regexp))
  166.     
  167.     (ediff-message-if-verbose "Refining difference region %d ..." (1+ reg-num))
  168.     (ediff-exec-process diff-program ediff-fine-diff-buffer 'synchronize
  169.             ;; The shuffle below is because we can compare 3-way
  170.             ;; or in several 2-way fashions, like fA fC, fA fB,
  171.             ;; or fB fC.
  172.             (if file-A file-A file-B)
  173.             (if file-B file-B file-A)
  174.             (if diff3-job
  175.                 (if file-C file-C file-B))
  176.             ) ; exec process
  177.   
  178.     (ediff-prepare-error-list ok-regexp ediff-fine-diff-buffer)
  179.     ;;(ediff-message-if-verbose
  180.     ;; "Refining difference region %d ... done" (1+ reg-num))
  181.     
  182.     (setq diff-list
  183.       (if diff3-job
  184.           (ediff-extract-diffs3
  185.            ediff-fine-diff-buffer '3way-comparison 'word-mode)
  186.         (ediff-extract-diffs ediff-fine-diff-buffer 'word-mode)))
  187.     ;; fixup diff-list
  188.     (if diff3-job
  189.     (cond ((not file-A)
  190.            (mapcar (function (lambda (elt)
  191.                    (aset elt 0 nil)
  192.                    (aset elt 1 nil)))
  193.                (cdr diff-list)))
  194.           ((not file-B)
  195.            (mapcar (function (lambda (elt)
  196.                    (aset elt 2 nil)
  197.                    (aset elt 3 nil)))
  198.                (cdr diff-list)))
  199.           ((not file-C)
  200.            (mapcar (function (lambda (elt)
  201.                    (aset elt 4 nil)
  202.                    (aset elt 5 nil)))
  203.                (cdr diff-list)))
  204.       ))
  205.     
  206.     (ediff-convert-fine-diffs-to-overlays diff-list reg-num)
  207.     ))
  208.   
  209.     
  210. (defun ediff-prepare-error-list (ok-regexp diff-buff)
  211.   (or (ediff-buffer-live-p ediff-error-buffer)
  212.       (setq ediff-error-buffer
  213.         (get-buffer-create (ediff-unique-buffer-name
  214.                 "*ediff-errors" "*"))))
  215.   (ediff-eval-in-buffer ediff-error-buffer
  216.     (erase-buffer)
  217.     (insert (ediff-eval-in-buffer diff-buff (buffer-string)))
  218.     (goto-char (point-min))
  219.     (delete-matching-lines ok-regexp)
  220.     (if (memq system-type '(vax-vms axp-vms))
  221.     (delete-matching-lines "^$")))
  222.   ;; If diff reports errors, show them then quit.
  223.   (if (/= 0 (ediff-eval-in-buffer ediff-error-buffer (buffer-size)))
  224.       (let ((ctl-buf ediff-control-buffer)
  225.         (error-buf ediff-error-buffer))
  226.     (ediff-skip-unsuitable-frames)
  227.     (switch-to-buffer error-buf)
  228.     (ediff-kill-buffer-carefully ctl-buf)
  229.     (error "Errors in diff output. Diff output is in %S" diff-buff))))
  230.  
  231. ;; BOUNDS specifies visibility bounds to use.
  232. ;; WORD-MODE tells whether we are in the word-mode or not.
  233. ;; If WORD-MODE, also construct vector of diffs using word numbers.
  234. ;; Else, use point values.
  235. ;; This function handles diff-2 jobs including the case of
  236. ;; merging buffers and files without ancestor.
  237. (defun ediff-extract-diffs (diff-buffer word-mode &optional bounds)
  238.   (let ((A-buffer ediff-buffer-A)
  239.     (B-buffer ediff-buffer-B)
  240.     (C-buffer ediff-buffer-C)
  241.     (a-prev 1) ; this is needed to set the first diff line correctly
  242.     (b-prev 1)
  243.     (c-prev 1)
  244.     diff-list shift-A shift-B
  245.     )
  246.  
  247.     ;; diff list contains word numbers, unless changed later
  248.     (setq diff-list (cons (if word-mode 'words 'points)
  249.               diff-list))
  250.     ;; we don't use visibility bounds for buffer C when merging
  251.     (if bounds
  252.     (setq shift-A
  253.           (ediff-overlay-start
  254.            (ediff-get-value-according-to-buffer-type 'A bounds))
  255.           shift-B 
  256.           (ediff-overlay-start
  257.            (ediff-get-value-according-to-buffer-type 'B bounds))))
  258.     
  259.     ;; reset point in buffers A/B/C
  260.     (ediff-eval-in-buffer A-buffer
  261.       (goto-char (if shift-A shift-A (point-min))))
  262.     (ediff-eval-in-buffer B-buffer
  263.       (goto-char (if shift-B shift-B (point-min))))
  264.     (if (ediff-buffer-live-p C-buffer)
  265.     (ediff-eval-in-buffer C-buffer
  266.       (goto-char (point-min))))
  267.     
  268.     (ediff-eval-in-buffer diff-buffer
  269.       (goto-char (point-min))
  270.       (while (re-search-forward ediff-match-diff-line nil t)
  271.        (let* ((a-begin (string-to-int (buffer-substring (match-beginning 1)
  272.                             (match-end 1))))
  273.           (a-end  (let ((b (match-beginning 3))
  274.                 (e (match-end 3)))
  275.             (if b
  276.                 (string-to-int (buffer-substring b e))
  277.               a-begin)))
  278.           (diff-type (buffer-substring (match-beginning 4) (match-end 4)))
  279.           (b-begin (string-to-int (buffer-substring (match-beginning 5)
  280.                             (match-end 5))))
  281.           (b-end (let ((b (match-beginning 7))
  282.                (e (match-end 7)))
  283.                (if b
  284.                (string-to-int (buffer-substring b e))
  285.              b-begin)))
  286.           a-begin-pt a-end-pt b-begin-pt b-end-pt
  287.           c-begin c-end c-begin-pt c-end-pt)
  288.      ;; fix the beginning and end numbers, because diff is somewhat
  289.      ;; strange about how it numbers lines
  290.      (if (string-equal diff-type "a")
  291.          (setq b-end (1+ b-end)
  292.            a-begin (1+ a-begin)
  293.            a-end a-begin)
  294.        (if (string-equal diff-type "d")
  295.            (setq a-end (1+ a-end)
  296.              b-begin (1+ b-begin)
  297.              b-end b-begin)
  298.          ;; (string-equal diff-type "c")
  299.          (setq a-end (1+ a-end)
  300.            b-end (1+ b-end))))
  301.            
  302.      (if (eq ediff-default-variant 'default-B)
  303.          (setq c-begin b-begin
  304.            c-end b-end)
  305.        (setq c-begin a-begin
  306.          c-end a-end))
  307.      
  308.      ;; compute main diff vector
  309.      (if word-mode
  310.          ;; make diff-list contain word numbers
  311.          (setq diff-list 
  312.            (nconc diff-list
  313.               (list
  314.                (if (ediff-buffer-live-p C-buffer)
  315.                    (vector (- a-begin a-prev) (- a-end a-begin)
  316.                        (- b-begin b-prev) (- b-end b-begin)
  317.                        (- c-begin c-prev) (- c-end c-begin)
  318.                        nil nil ; dummy ancestor
  319.                        nil     ; state of diff
  320.                        nil     ; state of merge
  321.                        nil     ; state of ancestor
  322.                        )
  323.                  (vector (- a-begin a-prev) (- a-end a-begin)
  324.                      (- b-begin b-prev) (- b-end b-begin)
  325.                      nil nil ; dummy buf C
  326.                      nil nil ; dummy ancestor
  327.                      nil     ; state of diff
  328.                      nil     ; state of merge
  329.                      nil     ; state of ancestor
  330.                      ))
  331.                ))
  332.            a-prev a-end
  333.            b-prev b-end
  334.            c-prev c-end)
  335.        ;; else convert lines to points
  336.        (ediff-eval-in-buffer A-buffer
  337.          (forward-line (- a-begin a-prev))
  338.          (setq a-begin-pt (point))
  339.          (forward-line (- a-end a-begin))
  340.          (setq a-end-pt (point)
  341.            a-prev a-end))
  342.        (ediff-eval-in-buffer B-buffer
  343.          (forward-line (- b-begin b-prev))
  344.          (setq b-begin-pt (point))
  345.          (forward-line (- b-end b-begin))
  346.          (setq b-end-pt (point)
  347.            b-prev b-end))
  348.        (if (ediff-buffer-live-p C-buffer)
  349.            (ediff-eval-in-buffer C-buffer
  350.          (forward-line (- c-begin c-prev))
  351.          (setq c-begin-pt (point))
  352.          (forward-line (- c-end c-begin))
  353.          (setq c-end-pt (point)
  354.                c-prev c-end)))
  355.        (setq diff-list 
  356.          (nconc
  357.           diff-list
  358.           (list
  359.            (if (ediff-buffer-live-p C-buffer)
  360.                (vector
  361.             a-begin-pt a-end-pt b-begin-pt b-end-pt
  362.             c-begin-pt c-end-pt
  363.             nil nil    ; dummy ancestor
  364.             ;; state of diff
  365.             ;; shows which buff is different from the other two
  366.             (if (eq ediff-default-variant 'default-B) 'A 'B)
  367.             ediff-default-variant    ; state of merge
  368.             nil            ; state of ancestor
  369.             )
  370.              (vector a-begin-pt a-end-pt
  371.                  b-begin-pt b-end-pt
  372.                  nil nil    ; dummy buf C
  373.                  nil nil    ; dummy ancestor
  374.                  nil nil    ; dummy state of diff & merge
  375.                  nil    ; dummy state of ancestor
  376.                  ))) 
  377.           )))
  378.           
  379.      ))) ; end ediff-eval-in-buffer
  380.     diff-list
  381.     ))
  382.     
  383.  
  384. (defun ediff-convert-diffs-to-overlays (diff-list)
  385.   (ediff-set-diff-overlays-in-one-buffer 'A diff-list)
  386.   (ediff-set-diff-overlays-in-one-buffer 'B diff-list)
  387.   (if ediff-3way-job
  388.       (ediff-set-diff-overlays-in-one-buffer 'C diff-list))
  389.   (if ediff-merge-with-ancestor-job
  390.       (ediff-set-diff-overlays-in-one-buffer 'Ancestor diff-list))
  391.   ;; set up vector showing the status of merge regions
  392.   (if ediff-merge-job
  393.       (setq ediff-state-of-merge
  394.         (vconcat
  395.          (mapcar (function
  396.               (lambda (elt)
  397.             (let ((state-of-merge (aref elt 9))
  398.                   (state-of-ancestor (aref elt 10)))
  399.               (vector
  400.                (if state-of-merge (format "%S" state-of-merge))
  401.                state-of-ancestor))))
  402.              ;; the first elt designates type of list
  403.              (cdr diff-list))
  404.          )))
  405.   (message "Processing difference regions ... done"))
  406.  
  407.   
  408. (defun ediff-set-diff-overlays-in-one-buffer (buf-type diff-list)
  409.   (let* ((current-diff -1)
  410.      (buff (ediff-get-buffer buf-type))
  411.      ;; ediff-extract-diffs puts the type of diff-list as the first elt
  412.      ;; of this list. The type is either 'points or 'words
  413.      (diff-list-type (car diff-list))
  414.      (shift (ediff-overlay-start
  415.          (ediff-get-value-according-to-buffer-type
  416.           buf-type ediff-narrow-bounds)))
  417.      (limit (ediff-overlay-end
  418.          (ediff-get-value-according-to-buffer-type 
  419.           buf-type ediff-narrow-bounds)))
  420.      diff-overlay-list list-element total-diffs
  421.      begin end pt-saved overlay state-of-diff)
  422.  
  423.     (setq diff-list (cdr diff-list)) ; discard diff list type
  424.     (setq total-diffs (length diff-list))
  425.       
  426.     ;; shift, if necessary
  427.     (ediff-eval-in-buffer buff (setq pt-saved shift))
  428.        
  429.     (while diff-list
  430.       (setq current-diff (1+ current-diff)
  431.         list-element (car diff-list)
  432.         begin      (aref list-element (cond ((eq buf-type 'A) 0)
  433.                           ((eq buf-type 'B) 2)
  434.                           ((eq buf-type 'C) 4)
  435.                           (t 6)))  ; Ancestor
  436.         end      (aref list-element (cond ((eq buf-type 'A) 1)
  437.                           ((eq buf-type 'B) 3)
  438.                           ((eq buf-type 'C) 5)
  439.                           (t 7)))  ; Ancestor
  440.         state-of-diff (aref list-element 8)
  441.         )
  442.         
  443.       (cond ((and (not (eq buf-type state-of-diff))
  444.           (not (eq buf-type 'Ancestor))
  445.           (memq state-of-diff '(A B C)))
  446.          (setq state-of-diff
  447.            (car (delq buf-type (delq state-of-diff (list 'A 'B 'C)))))
  448.          (setq state-of-diff (format "=diff(%S)" state-of-diff))
  449.          )
  450.         (t (setq state-of-diff nil)))
  451.         
  452.       ;; Put overlays at appropriate places in buffer
  453.       ;; convert word numbers to points, if necessary
  454.       (if (eq diff-list-type 'words)
  455.       (progn
  456.         (ediff-eval-in-buffer buff (goto-char pt-saved))
  457.         (setq begin (ediff-goto-word (1+ begin) buff)
  458.           end (ediff-goto-word end buff 'end))
  459.         (if (> end limit) (setq end limit))
  460.         (if (> begin end) (setq begin end))
  461.         (setq pt-saved (ediff-eval-in-buffer buff (point)))))
  462.       (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
  463.       
  464.       ;; Priorities of overlays should be equal in all ediff control
  465.       ;; panel buffers. Otherwise it won't work due to Emacs
  466.       ;; bug, as insert-in-front-hooks will be called 
  467.       ;; only on behalf of the buffer with higher priority.
  468.       (ediff-overlay-put overlay 'priority ediff-shadow-overlay-priority)
  469.       (ediff-overlay-put overlay 'ediff-diff-num current-diff)
  470.       (ediff-overlay-put 
  471.        overlay 'insert-in-front-hooks '(ediff-insert-in-front))
  472.       (if (and (ediff-window-display-p)
  473.            ediff-use-faces ediff-highlight-all-diffs)
  474.       (ediff-set-overlay-face
  475.        overlay (ediff-background-face buf-type current-diff)))
  476.  
  477.       (if (= 0 (mod current-diff 10))
  478.       (message "Buffer %S: Processing difference region %d of %d"
  479.            buf-type current-diff total-diffs))
  480.       ;; record all overlays for this difference
  481.       ;; the second elt, nil, is a place holder for the fine diff vector.
  482.       ;; the third elt, nil, is a place holder for no-fine-diffs flag.
  483.       (setq diff-overlay-list
  484.         (nconc
  485.          diff-overlay-list
  486.          (list (vector overlay nil nil state-of-diff)))
  487.         diff-list
  488.         (cdr diff-list))
  489.       ) ; while
  490.       
  491.     (set (intern (format "ediff-difference-vector-%S" buf-type))
  492.      (vconcat diff-overlay-list))
  493.     ))
  494.  
  495. (defsubst ediff-message-if-verbose (string &rest args)
  496.   (if ediff-verbose-p
  497.       (apply 'message string args)))
  498.      
  499. ;; `n' is the diff region to work on.  Default is ediff-current-difference.
  500. ;; if `flag' is 'noforce then make fine-diffs only if this region's fine
  501. ;; diffs have not been computed before.
  502. ;; if `flag' is 'skip then don't compute fine diffs for this region.
  503. (defun ediff-make-fine-diffs (&optional n flag)       
  504.   (or n  (setq n ediff-current-difference))
  505.   
  506.   (if (< ediff-number-of-differences 1)
  507.       (error "No differences found"))
  508.       
  509.   (if ediff-word-mode
  510.       (setq flag 'skip
  511.         ediff-auto-refine 'nix))
  512.   
  513.   (or (< n 0)
  514.       (>= n ediff-number-of-differences)
  515.       ;; n is within the range
  516.       (let ((tmp-buffer (get-buffer-create ediff-tmp-buffer))
  517.         (file-A ediff-temp-file-A)
  518.         (file-B ediff-temp-file-B)
  519.         (file-C ediff-temp-file-C)
  520.         (empty-A (ediff-empty-diff-region-p n 'A))
  521.         (empty-B (ediff-empty-diff-region-p n 'B))
  522.         (empty-C (ediff-empty-diff-region-p n 'C))
  523.         (whitespace-A (ediff-whitespace-diff-region-p n 'A))
  524.         (whitespace-B (ediff-whitespace-diff-region-p n 'B))
  525.         (whitespace-C (ediff-whitespace-diff-region-p n 'C))
  526.         cumulative-fine-diff-length)
  527.     
  528.     (cond ((and (eq flag 'noforce) (ediff-get-fine-diff-vector n 'A))
  529.            ;; don't compute fine diffs if diff vector exists
  530.            (if (ediff-no-fine-diffs-p n)
  531.            (ediff-message-if-verbose
  532.             "Only white-space differences in region %d" (1+ n))))
  533.           ;; if one of the regions is empty (or 2 in 3way comparison
  534.           ;; then don't refine
  535.           ((> (length (delq nil (list empty-A empty-B empty-C))) 1)
  536.            (if (and (ediff-looks-like-combined-merge n)
  537.             ediff-merge-job)
  538.            (ediff-set-fine-overlays-in-one-buffer 'C nil n))
  539.            (if ediff-3way-comparison-job
  540.            (ediff-message-if-verbose
  541.             "Region %d is empty in all buffers but %S"
  542.             (1+ n) 
  543.             (cond ((not empty-A) 'A)
  544.               ((not empty-B) 'B)
  545.               ((not empty-C) 'C)))
  546.          (ediff-message-if-verbose
  547.           "Region %d in buffer %S is empty"
  548.           (1+ n) 
  549.           (cond (empty-A 'A)
  550.             (empty-B 'B)
  551.             (empty-C 'C)))
  552.          )
  553.            ;; if all regions happen to be empty, say, as a result of
  554.            ;; deletions from non-empty regions, then mark as space only
  555.            (if (and empty-A empty-B empty-C)
  556.            (ediff-mark-diff-as-space-only n t)
  557.          (ediff-mark-diff-as-space-only n nil)))
  558.           ;; don't compute fine diffs for this region
  559.           ((eq flag 'skip)
  560.            (or (ediff-get-fine-diff-vector n 'A)
  561.            (memq ediff-auto-refine '(off nix))
  562.            (ediff-message-if-verbose
  563.             "Region %d exceeds auto-refine limit. `%s' force-refines"
  564.             (1+ n)
  565.             (substitute-command-keys
  566.              "\\[ediff-make-or-kill-fine-diffs]")
  567.             )))
  568.           (t
  569.            ;; recompute fine diffs
  570.            (ediff-wordify
  571.         (ediff-get-diff-posn 'A 'beg n)
  572.         (ediff-get-diff-posn 'A 'end n)
  573.         ediff-buffer-A
  574.         tmp-buffer
  575.         ediff-control-buffer)
  576.            (setq file-A
  577.              (ediff-make-temp-file tmp-buffer "fineDiffA" file-A))
  578.            
  579.            (ediff-wordify
  580.         (ediff-get-diff-posn 'B 'beg n)
  581.         (ediff-get-diff-posn 'B 'end n)
  582.         ediff-buffer-B
  583.         tmp-buffer
  584.         ediff-control-buffer)
  585.            (setq file-B
  586.              (ediff-make-temp-file tmp-buffer "fineDiffB" file-B))
  587.            
  588.            (if ediff-3way-job
  589.            (progn
  590.              (ediff-wordify
  591.               (ediff-get-diff-posn 'C 'beg n)
  592.               (ediff-get-diff-posn 'C 'end n)
  593.               ediff-buffer-C
  594.               tmp-buffer
  595.               ediff-control-buffer)
  596.              (setq file-C
  597.                (ediff-make-temp-file
  598.                 tmp-buffer "fineDiffC" file-C))))
  599.            
  600.            ;; save temp file names.
  601.            (setq ediff-temp-file-A file-A
  602.              ediff-temp-file-B file-B
  603.              ediff-temp-file-C file-C)
  604.            
  605.            ;; set the new vector of fine diffs, if none exists
  606.            (cond ((and ediff-3way-job whitespace-A)
  607.               (ediff-setup-fine-diff-regions nil file-B file-C n))
  608.              ((and ediff-3way-job whitespace-B)
  609.               (ediff-setup-fine-diff-regions file-A nil file-C n))
  610.              ((and ediff-3way-job
  611.                (or whitespace-C
  612.                    (and ediff-merge-job
  613.                     (ediff-looks-like-combined-merge n))))
  614.               (ediff-setup-fine-diff-regions file-A file-B nil n))
  615.              (t
  616.               (ediff-setup-fine-diff-regions file-A file-B file-C n)))
  617.               
  618.            (setq cumulative-fine-diff-length
  619.              (+ (length (ediff-get-fine-diff-vector n 'A))
  620.                    (length (ediff-get-fine-diff-vector n 'B))
  621.                    (if file-C
  622.                        (length
  623.                     (ediff-get-fine-diff-vector n 'C))
  624.                      0)))
  625.               
  626.            (cond ((or
  627.                ;; all regions are white space
  628.                (and whitespace-A whitespace-B whitespace-C)
  629.                ;; none is white space and no fine diffs detected
  630.                (and (not whitespace-A)
  631.                 (not whitespace-B)
  632.                 (not (and ediff-3way-job whitespace-C))
  633.                 (eq cumulative-fine-diff-length 0)))
  634.               (ediff-mark-diff-as-space-only n t)
  635.               (ediff-message-if-verbose
  636.                "Only white-space differences in region %d" (1+ n)))
  637.              ((eq cumulative-fine-diff-length 0)
  638.               (ediff-mark-diff-as-space-only n nil)
  639.               (ediff-message-if-verbose
  640.                "Only white-space differences in region %d %s"
  641.                (1+ n)
  642.                (cond (whitespace-A "in buffers B & C")
  643.                  (whitespace-B "in buffers A & C")
  644.                  (whitespace-C "in buffers A & B"))))
  645.              (t 
  646.               (ediff-mark-diff-as-space-only n nil)))
  647.            )
  648.           ) ; end cond
  649.     (ediff-set-fine-diff-properties n)
  650.     )))
  651.     
  652. ;; Interface to ediff-make-fine-diffs. Checks for auto-refine limit, etc.
  653. (defun ediff-install-fine-diff-if-necessary (n)
  654.   (cond ((eq ediff-auto-refine 'on)
  655.      (if (and
  656.           (> ediff-auto-refine-limit
  657.          (- (ediff-get-diff-posn 'A 'end n)
  658.             (ediff-get-diff-posn 'A 'beg n)))
  659.           (> ediff-auto-refine-limit
  660.          (- (ediff-get-diff-posn 'B 'end n)
  661.             (ediff-get-diff-posn 'B 'beg n))))
  662.          (ediff-make-fine-diffs n 'noforce)
  663.        (ediff-make-fine-diffs n 'skip)))
  664.     
  665.     ;; highlight iff fine diffs already exist
  666.     ((eq ediff-auto-refine 'off)
  667.      (ediff-make-fine-diffs n 'skip))))
  668.     
  669.     
  670. ;; if fine diff vector is not set for diff N, then do nothing
  671. (defun ediff-set-fine-diff-properties (n &optional default)
  672.   (or (not (ediff-window-display-p))
  673.       (< n 0)
  674.       (>= n ediff-number-of-differences)
  675.       ;; in a window system, set faces and priorities of fine overlays
  676.       (progn
  677.     (ediff-set-fine-diff-properties-in-one-buffer 'A n default)
  678.     (ediff-set-fine-diff-properties-in-one-buffer 'B n default)
  679.     (if ediff-3way-job
  680.         (ediff-set-fine-diff-properties-in-one-buffer 'C n default)))))
  681.     
  682. (defun ediff-set-fine-diff-properties-in-one-buffer (buf-type
  683.                              n &optional default)
  684.   (let ((fine-diff-vector  (ediff-get-fine-diff-vector n buf-type))
  685.     (face (if default 
  686.           'default
  687.         (face-name
  688.          (intern (format "ediff-fine-diff-face-%S" buf-type)))))
  689.     (priority (if default
  690.               0
  691.             (1+ (or (ediff-overlay-get
  692.                  (symbol-value
  693.                   (intern
  694.                    (format
  695.                 "ediff-current-diff-overlay-%S" buf-type)))
  696.                  'priority)
  697.                 0)))))
  698.     (mapcar
  699.      (function (lambda (overl)
  700.          (ediff-set-overlay-face overl face)
  701.          (ediff-overlay-put overl 'priority priority)))
  702.      fine-diff-vector)))
  703.      
  704. ;; This assumes buffer C and that the region looks like a combination of
  705. ;; regions in buffer A and C.
  706. (defun ediff-set-fine-overlays-for-combined-merge (diff-list reg-num)
  707.   (let (overlay1 overlay2 overlay3)
  708.     (setq overlay1 (ediff-make-bullet-proof-overlay (nth 0 diff-list)
  709.                             (nth 1 diff-list)
  710.                             ediff-buffer-C)
  711.       overlay2 (ediff-make-bullet-proof-overlay (nth 2 diff-list)
  712.                             (nth 3 diff-list)
  713.                             ediff-buffer-C)
  714.       overlay3 (ediff-make-bullet-proof-overlay (nth 4 diff-list)
  715.                             (nth 5 diff-list)
  716.                             ediff-buffer-C))
  717.     (ediff-set-fine-diff-vector reg-num 'C (vector overlay1 overlay2 overlay3))
  718.     ))
  719.     
  720.     
  721. ;; Convert diff list to overlays for a given DIFF-REGION
  722. ;; in buffer of type BUF-TYPE
  723. (defun ediff-set-fine-overlays-in-one-buffer (buf-type diff-list region-num)
  724.   (let* ((current-diff -1)
  725.      (reg-start (ediff-get-diff-posn buf-type 'beg region-num))
  726.      (buff (ediff-get-buffer buf-type))
  727.      combined-merge-diff-list
  728.      diff-overlay-list list-element
  729.      begin end overlay)
  730.  
  731.     (ediff-clear-fine-differences-in-one-buffer region-num buf-type)
  732.     (setq diff-list (cdr diff-list)) ; discard list type (words or points)
  733.     (ediff-eval-in-buffer buff (goto-char reg-start))
  734.     
  735.     ;; if it is a combined merge then set overlays in buff C specially
  736.     (if (and ediff-merge-job (eq buf-type 'C)
  737.          (setq combined-merge-diff-list
  738.            (ediff-looks-like-combined-merge region-num)))
  739.     (ediff-set-fine-overlays-for-combined-merge
  740.      combined-merge-diff-list region-num)
  741.       ;; regular fine diff
  742.       (while diff-list
  743.     (setq current-diff (1+ current-diff)
  744.           list-element (car diff-list)
  745.           begin      (aref list-element (cond ((eq buf-type 'A) 0)
  746.                           ((eq buf-type 'B) 2)
  747.                           (t 4)))  ; buf C
  748.           end      (aref list-element (cond ((eq buf-type 'A) 1)
  749.                           ((eq buf-type 'B) 3)
  750.                           (t 5)))) ; buf C
  751.     (if (not (or begin end))
  752.         () ; skip this diff
  753.       ;; Put overlays at appropriate places in buffers
  754.       ;; convert lines to points, if necessary
  755.       (setq begin (ediff-goto-word (1+ begin) buff)
  756.         end (ediff-goto-word end buff 'end))
  757.       (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
  758.       ;; record all overlays for this difference region
  759.       (setq diff-overlay-list (nconc diff-overlay-list (list overlay))))
  760.     
  761.     (setq diff-list (cdr diff-list))
  762.     ) ; while
  763.       ;; convert the list of difference information into a vector
  764.       ;; for fast access
  765.       (ediff-set-fine-diff-vector 
  766.        region-num buf-type (vconcat diff-overlay-list))
  767.       )))
  768.  
  769.  
  770. ;; Stolen from emerge.el
  771. (defun ediff-get-diff3-group (file)
  772.   ;; This save-excursion allows ediff-get-diff3-group to be called for the
  773.   ;; various groups of lines (1, 2, 3) in any order, and for the lines to
  774.   ;; appear in any order.  The reason this is necessary is that Gnu diff3
  775.   ;; can produce the groups in the order 1, 2, 3 or 1, 3, 2.
  776.   (save-excursion
  777.     (re-search-forward
  778.      (concat "^" file ":\\([0-9]+\\)\\(,\\([0-9]+\\)\\)?\\([ac]\\)$"))
  779.     (beginning-of-line 2)
  780.     ;; treatment depends on whether it is an "a" group or a "c" group
  781.     (if (string-equal (buffer-substring (match-beginning 4) (match-end 4)) "c")
  782.     ;; it is a "c" group
  783.     (if (match-beginning 2)
  784.         ;; it has two numbers
  785.         (list (string-to-int
  786.            (buffer-substring (match-beginning 1) (match-end 1)))
  787.           (1+ (string-to-int
  788.                (buffer-substring (match-beginning 3) (match-end 3)))))
  789.       ;; it has one number
  790.       (let ((x (string-to-int
  791.             (buffer-substring (match-beginning 1) (match-end 1)))))
  792.         (list x (1+ x))))
  793.       ;; it is an "a" group
  794.       (let ((x (1+ (string-to-int
  795.             (buffer-substring (match-beginning 1) (match-end 1))))))
  796.     (list x x)))))
  797.  
  798.  
  799. ;; If WORD-MODE, construct vector of diffs using word numbers.
  800. ;; Else, use point values.
  801. ;; WORD-MODE also tells if we are in the word-mode or not.
  802. ;; If THREE-WAY-COMP, then it is a 3-way comparison. Else, it is merging
  803. ;; with ancestor, in which case buffer-C contents is identical to buffer-A/B,
  804. ;; contents (unless buffer-A is narrowed) depending on ediff-default-variant's
  805. ;; value.
  806. ;; BOUNDS specifies visibility bounds to use.
  807. (defun ediff-extract-diffs3 (diff-buffer word-mode three-way-comp
  808.                       &optional bounds)
  809.   (let ((A-buffer ediff-buffer-A)
  810.     (B-buffer ediff-buffer-B)
  811.     (C-buffer ediff-buffer-C)
  812.     (anc-buffer ediff-ancestor-buffer)
  813.     (a-prev 1) ; needed to set the first diff line correctly
  814.     (b-prev 1)
  815.     (c-prev 1)
  816.     (anc-prev 1)
  817.     diff-list shift-A shift-B shift-C
  818.     )
  819.  
  820.     ;; diff list contains word numbers or points, depending on word-mode
  821.     (setq diff-list (cons (if word-mode 'words 'points)
  822.               diff-list))
  823.     (if bounds
  824.     (setq shift-A
  825.           (ediff-overlay-start
  826.            (ediff-get-value-according-to-buffer-type 'A bounds))
  827.           shift-B 
  828.           (ediff-overlay-start
  829.            (ediff-get-value-according-to-buffer-type 'B bounds))
  830.           shift-C 
  831.           (if three-way-comp
  832.           (ediff-overlay-start
  833.            (ediff-get-value-according-to-buffer-type 'C bounds)))))
  834.     
  835.     ;; reset point in buffers A, B, C
  836.     (ediff-eval-in-buffer A-buffer
  837.       (goto-char (if shift-A shift-A (point-min))))
  838.     (ediff-eval-in-buffer B-buffer
  839.       (goto-char (if shift-B shift-B (point-min))))
  840.     (if three-way-comp
  841.     (ediff-eval-in-buffer C-buffer
  842.       (goto-char (if shift-C shift-C (point-min)))))
  843.     (if (ediff-buffer-live-p anc-buffer)
  844.     (ediff-eval-in-buffer anc-buffer
  845.       (goto-char (point-min))))
  846.     
  847.     (ediff-eval-in-buffer diff-buffer
  848.       (goto-char (point-min))
  849.       (while (re-search-forward ediff-match-diff3-line nil t)
  850.     ;; leave point after matched line
  851.        (beginning-of-line 2)
  852.        (let ((agreement (buffer-substring (match-beginning 1) (match-end 1))))
  853.      ;; if the A and B files are the same and not 3way-comparison,
  854.      ;; ignore the difference
  855.      (if (or three-way-comp (not (string-equal agreement "3")))
  856.          (let* ((a-begin (car (ediff-get-diff3-group "1")))
  857.             (a-end  (nth 1 (ediff-get-diff3-group "1")))
  858.             (b-begin (car (ediff-get-diff3-group "2")))
  859.             (b-end (nth 1 (ediff-get-diff3-group "2")))
  860.             (c-or-anc-begin (car (ediff-get-diff3-group "3")))
  861.             (c-or-anc-end (nth 1 (ediff-get-diff3-group "3")))
  862.             (state-of-merge
  863.              (cond ((string-equal agreement "1") 'prefer-A)
  864.                ((string-equal agreement "2") 'prefer-B)
  865.                (t ediff-default-variant)))
  866.             (state-of-diff-merge
  867.              (if (memq state-of-merge '(default-A prefer-A)) 'B 'A))
  868.             (state-of-diff-comparison
  869.              (cond ((string-equal agreement "1") 'A)
  870.                ((string-equal agreement "2") 'B)
  871.                ((string-equal agreement "3") 'C)))
  872.             state-of-ancestor
  873.             c-begin c-end
  874.             a-begin-pt a-end-pt
  875.             b-begin-pt b-end-pt
  876.             c-begin-pt c-end-pt
  877.             anc-begin-pt anc-end-pt)
  878.             
  879.            (setq state-of-ancestor
  880.              (= c-or-anc-begin c-or-anc-end))
  881.  
  882.            (cond (three-way-comp
  883.               (setq c-begin c-or-anc-begin
  884.                 c-end c-or-anc-end))
  885.              ((eq ediff-default-variant 'default-B)
  886.               (setq c-begin b-begin
  887.                 c-end b-end))
  888.              (t
  889.               (setq c-begin a-begin
  890.                 c-end a-end)))
  891.      
  892.            ;; compute main diff vector
  893.            (if word-mode
  894.            ;; make diff-list contain word numbers
  895.            (setq diff-list 
  896.              (nconc diff-list
  897.                 (list (vector
  898.                        (- a-begin a-prev) (- a-end a-begin)
  899.                        (- b-begin b-prev) (- b-end b-begin)
  900.                        (- c-begin c-prev) (- c-end c-begin)
  901.                        nil nil ; dummy ancestor
  902.                        nil     ; state of diff
  903.                        nil     ; state of merge
  904.                        nil     ; state of ancestor
  905.                        )))
  906.              a-prev a-end
  907.              b-prev b-end
  908.              c-prev c-end)
  909.          ;; else convert lines to points
  910.          (ediff-eval-in-buffer A-buffer
  911.            (forward-line (- a-begin a-prev))
  912.            (setq a-begin-pt (point))
  913.            (forward-line (- a-end a-begin))
  914.            (setq a-end-pt (point)
  915.              a-prev a-end))
  916.          (ediff-eval-in-buffer B-buffer
  917.            (forward-line (- b-begin b-prev))
  918.            (setq b-begin-pt (point))
  919.            (forward-line (- b-end b-begin))
  920.            (setq b-end-pt (point)
  921.              b-prev b-end))
  922.          (ediff-eval-in-buffer C-buffer
  923.            (forward-line (- c-begin c-prev))
  924.            (setq c-begin-pt (point))
  925.            (forward-line (- c-end c-begin))
  926.            (setq c-end-pt (point)
  927.              c-prev c-end))
  928.          (if (ediff-buffer-live-p anc-buffer)
  929.              (ediff-eval-in-buffer anc-buffer
  930.                (forward-line (- c-or-anc-begin anc-prev))
  931.                (setq anc-begin-pt (point))
  932.                (forward-line (- c-or-anc-end c-or-anc-begin))
  933.                (setq anc-end-pt (point)
  934.                  anc-prev c-or-anc-end)))
  935.          (setq diff-list 
  936.                (nconc
  937.             diff-list
  938.             ;; if comparing with ancestor, then there also is a
  939.             ;; state-of-difference marker
  940.             (if three-way-comp
  941.                 (list (vector
  942.                    a-begin-pt a-end-pt
  943.                    b-begin-pt b-end-pt
  944.                    c-begin-pt c-end-pt
  945.                    nil nil ; ancestor begin/end
  946.                    state-of-diff-comparison
  947.                    nil    ; state of merge
  948.                    nil  ; state of ancestor
  949.                    ))
  950.               (list (vector a-begin-pt a-end-pt
  951.                     b-begin-pt b-end-pt
  952.                     c-begin-pt c-end-pt
  953.                     anc-begin-pt anc-end-pt
  954.                     state-of-diff-merge
  955.                     state-of-merge
  956.                     state-of-ancestor
  957.                     )))
  958.             )))
  959.            ))
  960.            
  961.      ))) ; end ediff-eval-in-buffer
  962.     diff-list
  963.     ))
  964.     
  965. ;; Generate the difference vector and overlays for three files
  966. ;; File-C is either the third file to compare (in case of 3-way comparison)
  967. ;; or it is the ancestor file.
  968. (defun ediff-setup-diff-regions3 (file-A file-B file-C)
  969.   
  970.   ;; force all minibuffers to display ediff's messages.
  971.   ;; when xemacs implements minibufferless frames, this won't be necessary
  972.   (if (and ediff-xemacs-p ediff-synchronize-minibuffers)
  973.       (setq synchronize-minibuffers t))
  974.                           
  975.   (or (ediff-buffer-live-p ediff-diff-buffer)
  976.       (setq ediff-diff-buffer
  977.         (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
  978.   
  979.   (message "Computing differences ...")
  980.   (ediff-exec-process ediff-diff3-program ediff-diff-buffer 'synchronize
  981.               ediff-diff3-options file-A file-B file-C)
  982.   
  983.   (ediff-prepare-error-list ediff-diff3-ok-lines-regexp ediff-diff-buffer)
  984.   ;;(message "Computing differences ... done")
  985.   (ediff-convert-diffs-to-overlays
  986.    (ediff-extract-diffs3
  987.     ediff-diff-buffer
  988.     ediff-word-mode ediff-3way-comparison-job ediff-narrow-bounds)
  989.    ))
  990.    
  991.  
  992. ;; Execute PROGRAM asynchronously, unless OS/2 or unless SYNCH is non-nil.
  993. ;; BUFFER must be a buffer object, and must be alive.
  994. ;; All arguments in ARGS must be strings. The first arg may be a blank string,
  995. ;; in which case we delete it from ARGS list. We also delete nil from args.
  996. (defun ediff-exec-process (program buffer synch &rest args)
  997.   (let ((data (match-data)))
  998.     (if (string-match "^[ \t]*$" (car args)) ; delete blank string
  999.     (setq args (cdr args)))
  1000.     (setq args (delq nil args)) ; delete nil from arguments
  1001.     (unwind-protect
  1002.     (let ((directory default-directory)
  1003.           proc)
  1004.       (save-excursion
  1005.         (set-buffer buffer)
  1006.         (erase-buffer)
  1007.         (setq default-directory directory)
  1008.         (if (or (eq system-type 'emx) synch)
  1009.         ;; In OS/2 do it synchronously, since OS/2 doesn't let us
  1010.         ;; delete files used by other processes. Thus, in ediff-buffers
  1011.         ;; and similar functions, we can't delete temp files because
  1012.         ;; they might be used by the asynch process that computes
  1013.         ;; custom diffs. So, we have to wait till custom diff
  1014.         ;; subprocess is done.
  1015.         (apply 'call-process program nil buffer nil args)
  1016.           ;; On other systems, do it asynchronously.
  1017.           (setq proc (get-buffer-process buffer))
  1018.           (if proc (kill-process proc))
  1019.           (setq proc
  1020.             (apply 'start-process "Custom Diff" buffer program args))
  1021.           (setq mode-line-process '(":%s"))
  1022.           (set-process-sentinel proc 'ediff-process-sentinel)
  1023.           (set-process-filter proc 'ediff-process-filter)
  1024.           )))
  1025.       (store-match-data data))))
  1026.       
  1027. ;; This is shell-command-filter from simple.el in FSF Emacs.
  1028. ;; Copied here because XEmacs doesn't have it.
  1029. (defun ediff-process-filter (proc string)
  1030.   ;; Do save-excursion by hand so that we can leave point numerically unchanged
  1031.   ;; despite an insertion immediately after it.
  1032.   (let* ((obuf (current-buffer))
  1033.          (buffer (process-buffer proc))
  1034.          opoint
  1035.          (window (get-buffer-window buffer))
  1036.          (pos (window-start window)))
  1037.     (unwind-protect
  1038.         (progn
  1039.           (set-buffer buffer)
  1040.           (or (= (point) (point-max))
  1041.               (setq opoint (point)))
  1042.           (goto-char (point-max))
  1043.           (insert-before-markers string))
  1044.       ;; insert-before-markers moved this marker: set it back.
  1045.       (set-window-start window pos)
  1046.       ;; Finish our save-excursion.
  1047.       (if opoint
  1048.           (goto-char opoint))
  1049.       (set-buffer obuf))))
  1050.       
  1051. ;; like shell-command-sentinel but doesn't print an exit status message
  1052. ;; we do this because diff always exits with status 1, if diffs are found
  1053. ;; so shell-command-sentinel displays a confusing message to the user
  1054. (defun ediff-process-sentinel (process signal)
  1055.   (if (and (memq (process-status process) '(exit signal))
  1056.            (buffer-name (process-buffer process)))
  1057.       (progn
  1058.         (save-excursion
  1059.           (set-buffer (process-buffer process))
  1060.           (setq mode-line-process nil))
  1061.         (delete-process process))))
  1062.     
  1063.  
  1064. ;;; Word functions used to refine the current diff        
  1065.  
  1066. (defvar ediff-forward-word-function 'ediff-forward-word
  1067.   "*Function to call to move to the next word.
  1068. Used for splitting difference regions into individual words.")
  1069.  
  1070. (defvar ediff-whitespace " \n\t\f"
  1071.   "*Characters constituting white space.
  1072. These characters are ignored when differing regions are split into words.")
  1073.  
  1074. ;;(defvar ediff-word-1 "a-zA-Z---_`'.?!:"
  1075. (defvar ediff-word-1 "a-zA-Z---_"
  1076.   "*Characters that constitute words of type 1.
  1077. More precisely, [ediff-word-1] is a regexp that matches type 1 words.
  1078. See `ediff-forward-word' for more details.")  
  1079.  
  1080. (defvar ediff-word-2 "0-9.,"
  1081.   "*Characters that constitute words of type 2.
  1082. More precisely, [ediff-word-2] is a regexp that matches type 2 words.
  1083. See `ediff-forward-word' for more details.")
  1084.  
  1085. (defvar ediff-word-3 "`'?!:;\"{}[]()"
  1086.   "*Characters that constitute words of type 3.
  1087. More precisely, [ediff-word-3] is a regexp that matches type 3 words.
  1088. See `ediff-forward-word' for more details.")
  1089.  
  1090. (defvar ediff-word-4
  1091.   (concat "^" ediff-word-1 ediff-word-2 ediff-word-3 ediff-whitespace)
  1092.   "*Characters that constitute words of type 4.
  1093. More precisely, [ediff-word-4] is a regexp that matches type 4 words.
  1094. See `ediff-forward-word' for more details.")  
  1095.  
  1096. ;; Split region along word boundaries. Each word will be on its own line.
  1097. ;; Output to buffer out-buffer.
  1098. (defun ediff-forward-word ()
  1099.   "Move point one word forward.
  1100. There are four types of words, each of which consists entirely of
  1101. characters in `ediff-word-1', `ediff-word-2', `ediff-word-3', or
  1102. `ediff-word-4'.  Words are recognized by passing these in turn as the
  1103. argument to `skip-chars-forward'."
  1104.   (or (> (skip-chars-forward ediff-word-1) 0)
  1105.       (> (skip-chars-forward ediff-word-2) 0)
  1106.       (> (skip-chars-forward ediff-word-3) 0)
  1107.       (> (skip-chars-forward ediff-word-4) 0)
  1108.       ))
  1109.  
  1110. (defun ediff-wordify (beg end in-buffer out-buffer &optional control-buf)
  1111.   (let (sv-point string)
  1112.     (save-excursion
  1113.      (set-buffer in-buffer)
  1114.      (setq string (buffer-substring beg end))
  1115.  
  1116.      (set-buffer out-buffer)
  1117.      (erase-buffer)
  1118.      (insert string)
  1119.      (goto-char (point-min))
  1120.      (skip-chars-forward ediff-whitespace)
  1121.      (delete-region (point-min) (point))
  1122.      
  1123.      (while (not (eobp))
  1124.        ;; eval incontrol buf to let user create local versions for
  1125.        ;; different invocations
  1126.        (if control-buf
  1127.        (funcall 
  1128.         (ediff-eval-in-buffer control-buf ediff-forward-word-function))
  1129.      (funcall ediff-forward-word-function))
  1130.        (setq sv-point (point))
  1131.        (skip-chars-forward ediff-whitespace)
  1132.        (delete-region sv-point (point))
  1133.        (insert "\n")))))
  1134.        
  1135. ;; copy string from BEG END from IN-BUF to OUT-BUF
  1136. (defun ediff-copy-to-buffer (beg end in-buffer out-buffer)
  1137.   (let (string)
  1138.     (save-excursion
  1139.       (set-buffer in-buffer)
  1140.      (setq string (buffer-substring beg end))
  1141.  
  1142.      (set-buffer out-buffer)
  1143.      (erase-buffer)
  1144.      (insert string)
  1145.      (goto-char (point-min)))))
  1146.  
  1147.  
  1148. ;; goto word #n starting at current position in buffer `buf'
  1149. ;; For ediff, a word is either a string of a-z,A-Z, incl `-' and `_';
  1150. ;; or a string of other non-blanks. A blank is a \n\t\f
  1151. ;; If `flag' is non-nil, goto the end of the n-th word.
  1152. (defun ediff-goto-word (n buf &optional flag)
  1153.   ;; remember val ediff-forward-word-function has in ctl buf
  1154.   (let ((fwd-word-fun ediff-forward-word-function))
  1155.     (ediff-eval-in-buffer buf
  1156.       (skip-chars-forward ediff-whitespace)
  1157.       (while (> n 1)
  1158.     (funcall fwd-word-fun)
  1159.     (skip-chars-forward ediff-whitespace)
  1160.     (setq n (1- n)))
  1161.       (if (and flag (> n 0))
  1162.       (funcall fwd-word-fun))
  1163.       (point))))
  1164.  
  1165.  
  1166. (provide 'ediff-diff)
  1167.  
  1168.  
  1169. ;; ediff-diff.el ends here
  1170.